repo.or.cz
/
minish.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make programs to escape the special characters
[minish.git]
/
src
/
close parenthesis.c
blob
4e5b09825b69defe4a601d779062eb5d3b02b1e4
1
#include <stdio.h>
// EOF,putchar
2
#include <stdlib.h>
// EXIT_FAILURE
3
4
int
main
(
void
) {
5
if
(
putchar
(
')'
) ==
EOF
) {
6
return
EXIT_FAILURE
;
7
}
8
}